home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-350.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  108 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(14595);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CAN-2004-0642", "CAN-2004-0643", "CAN-2004-0644");
  13.  
  14.  name["english"] = "RHSA-2004-350: krb";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated krb5 packages that improve client responsiveness and fix several
  21.   security issues are now available for Red Hat Enterprise Linux 3.
  22.  
  23.   Kerberos is a networked authentication system that uses a trusted third
  24.   party (a KDC) to authenticate clients and servers to each other.
  25.  
  26.   Several double-free bugs were found in the Kerberos 5 KDC and libraries. A
  27.   remote attacker could potentially exploit these flaws to execuate arbitrary
  28.   code. The Common Vulnerabilities and Exposures project (cve.mitre.org) has
  29.   assigned the names CAN-2004-0642 and CAN-2004-0643 to these issues.
  30.  
  31.   A double-free bug was also found in the krb524 server (CAN-2004-0772),
  32.   however this issue does not affect Red Hat Enterprise Linux 3 Kerberos
  33.   packages.
  34.  
  35.   An infinite loop bug was found in the Kerberos 5 ASN.1 decoder library. A
  36.   remote attacker may be able to trigger this flaw and cause a denial of
  37.   service. The Common Vulnerabilities and Exposures project (cve.mitre.org)
  38.   has assigned the name CAN-2004-0644 to this issue.
  39.  
  40.   When attempting to contact a KDC, the Kerberos libraries will iterate
  41.   through the list of configured servers, attempting to contact each in turn.
  42.   If one of the servers becomes unresponsive, the client will time out and
  43.   contact the next configured server. When the library attempts to contact
  44.   the next KDC, the entire process is repeated. For applications which must
  45.   contact a KDC several times, the accumulated time spent waiting can become
  46.   significant.
  47.  
  48.   This update modifies the libraries, notes which server for a given realm
  49.   last responded to a request, and attempts to contact that server first
  50.   before contacting any of the other configured servers.
  51.  
  52.   All users of krb5 should upgrade to these updated packages, which contain
  53.   backported security patches to resolve these issues.
  54.  
  55.  
  56.  
  57.  
  58. Solution : http://rhn.redhat.com/errata/RHSA-2004-350.html
  59. Risk factor : High';
  60.  
  61.  script_description(english:desc["english"]);
  62.  
  63.  summary["english"] = "Check for the version of the krb packages";
  64.  script_summary(english:summary["english"]);
  65.  
  66.  script_category(ACT_GATHER_INFO);
  67.  
  68.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  69.  family["english"] = "Red Hat Local Security Checks";
  70.  script_family(english:family["english"]);
  71.  
  72.  script_dependencies("ssh_get_info.nasl");
  73.  
  74.  script_require_keys("Host/RedHat/rpm-list");
  75.  exit(0);
  76. }
  77.  
  78. include("rpm.inc");
  79. if ( rpm_check( reference:"krb5-devel-1.2.7-28", release:"RHEL3") )
  80. {
  81.  security_hole(0);
  82.  exit(0);
  83. }
  84. if ( rpm_check( reference:"krb5-libs-1.2.7-28", release:"RHEL3") )
  85. {
  86.  security_hole(0);
  87.  exit(0);
  88. }
  89. if ( rpm_check( reference:"krb5-server-1.2.7-28", release:"RHEL3") )
  90. {
  91.  security_hole(0);
  92.  exit(0);
  93. }
  94. if ( rpm_check( reference:"krb5-workstation-1.2.7-28", release:"RHEL3") )
  95. {
  96.  security_hole(0);
  97.  exit(0);
  98. }
  99.  
  100. if ( rpm_exists(rpm:"krb-", release:"RHEL3") )
  101. {
  102.  set_kb_item(name:"CAN-2004-0642", value:TRUE);
  103.  set_kb_item(name:"CAN-2004-0643", value:TRUE);
  104.  set_kb_item(name:"CAN-2004-0644", value:TRUE);
  105. }
  106.  
  107. set_kb_item(name:"RHSA-2004-350", value:TRUE);
  108.